home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #5 / Software USA Volume 4.05.iso / mac / Education / HTML Tricks / Extreme Mac HTML Tricks v2.1 / Extreme Mac HTML Tricks v2.1.rsrc / TEXT_131.txt < prev    next >
Text File  |  1996-10-31  |  2KB  |  72 lines

  1.  
  2.  
  3.  
  4.  
  5. It's Color Time
  6.     To make words stand out from others you can change their color. It's easy to do. I'll give an example by making your heading the color Red. Just edit the html code here: 
  7. <center><h1>Extreme Mac</h1></center> 
  8. to look like this: 
  9. <FONT COLOR="DD0000"> <center><h1>Extreme Mac</h1></center></FONT> 
  10.  
  11. •Explanation:
  12.     All you have to do is add in the <font color="thecolorid#"> and end it with a </font>.  Click on the return icon below to jump to the Color Table, to recieve the correct colorid number for your text. This time look at the second line after clicking the color you wish to use. That will give you the code to add into your page. 
  13.  
  14.  
  15.  
  16. ‚Ä¢Currently your html should look similar to this:
  17.  
  18. <html>
  19. <HEAD>
  20. <TITLE>Put the Title Here</TITLE>
  21. </HEAD>
  22. <body bgcolor="#ffffff" background="imagelocation.gif" text="#000000" link="#0000ff" vlink="#00005a">
  23. <FONT COLOR="DD0000"> <center><h1>Extreme Mac</h1></center></FONT> 
  24. <p>
  25. </body>
  26. </html>
  27.  
  28. ‚Ä¢This is what your heading and page looks like now:
  29.  
  30.                                                             Extreme Mac
  31.  
  32.  
  33. It has a red heading, black text, white background. (Your may have an image as the background)
  34.              
  35.     ¬†
  36.     To make the text on your page stand out not using color, you can use these simple codes that you'll soon learn by heart before you realize it.
  37. <B>Bold</B>
  38. <I>Italic </I>
  39. <U>Underline</U>
  40. <S>Strike Through Text</S> Makes a line across the middle of the text.
  41. <Q>"Short Quotation"</Q>
  42. <BLINK>Blinking</BLINK> Makes the text blink non-stop. Very annoying to me and other web surfers.
  43.  
  44. To make your text many different sizes (not heading sizes) use these:
  45. <FONT SIZE=1>Font Size 1</FONT>
  46. <FONT SIZE=2>Font Size 2</FONT>
  47. <FONT SIZE=3>Font Size 3</FONT>
  48. <FONT SIZE=4>Font Size 4</FONT>
  49. <FONT SIZE=5>Font Size 5</FONT>
  50. <FONT SIZE=6>Font Size 6</FONT>
  51.  
  52.     
  53. So why don't you add in the bold command for your heading, to make it stand out even more. You should know where to put it, but if you don't look below.
  54.  
  55. You should put it in here:
  56. <FONT COLOR="DD0000"> <center><h1><b>Extreme Mac</b></h1></center></FONT> 
  57.  
  58.     You can combine any html code to make the text different. Example: font size 3, make it the color green, have it bold, and make it centered on your page. Here is the html code: (I didn't add this to the example web page)
  59. <font size=3><b><FONT COLOR="33CC33">Extreme Mac</FONT></b></font>
  60. It would looking like:
  61.                             
  62.                                                                                                        Extreme Mac
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.